/* Custom CSS for SEO Guide Page */
/*===============================*/

/* Base Styles */
/*------------*/
:root {
  --primary-color: #2563eb;    /* Modern blue */
  --secondary-color: #4f46e5;  /* Indigo */
  --accent-color: #22c55e;     /* Vibrant green */
  --text-color: #1e293b;       /* Dark slate */
  --light-bg: #f8fafc;        /* Light background */
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-color);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  line-height: 1.6;
}

/* Headings */
/*---------*/
.display-title {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-heading i {
  color: var(--primary-color);
  font-size: 1.5em;
}

/* Content Styles */
/*---------------*/
.content-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.2s ease;
}

.content-card:hover {
  transform: translateY(-5px);
}

.feature-list {
  list-style: none;
  padding-left: 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.feature-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 900;
}

/* Utility Classes */
/*----------------*/
.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.badge-icon {
  background: var(--light-bg);
  border-radius: 0.75rem;
  padding: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}